/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a237e;
    --secondary-blue: #283593;
    --accent-red: #e53935;
    --light-blue: #e8eaf6;
    --dark-text: #212121;
    --light-text: #757575;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius: 12px;
    --section-padding: 80px 0;
    --container-padding: 0 20px;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf6 100%);
    color: var(--dark-text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.molecule {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(26, 35, 126, 0.05);
    border-radius: 50%;
    animation: float 20s infinite linear;
    border: 2px solid rgba(26, 35, 126, 0.1);
}

.molecule::before,
.molecule::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(229, 57, 53, 0.2);
    border-radius: 50%;
}

.molecule::before {
    top: 10px;
    left: 10px;
}

.molecule::after {
    bottom: 10px;
    right: 10px;
}

.molecule:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}

.molecule:nth-child(2) {
    top: 70%;
    left: 80%;
    animation-duration: 30s;
    animation-delay: 2s;
}

.molecule:nth-child(3) {
    top: 40%;
    left: 90%;
    animation-duration: 35s;
    animation-delay: 5s;
}

.molecule:nth-child(4) {
    top: 80%;
    left: 10%;
    animation-duration: 28s;
    animation-delay: 7s;
}

.molecule:nth-child(5) {
    top: 20%;
    left: 70%;
    animation-duration: 32s;
    animation-delay: 10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, 50px) rotate(90deg);
    }

    50% {
        transform: translate(0, 100px) rotate(180deg);
    }

    75% {
        transform: translate(-30px, 50px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Particle Animation */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgba(26, 35, 126, 0.15);
    border-radius: 50%;
    animation: particle-float 25s infinite linear;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

/* Header Styles */
.pamphlet-header {
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #e53935 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.pamphlet-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L48,144C96,160,192,192,288,186.7C384,181,480,139,576,138.7C672,139,768,181,864,197.3C960,213,1056,203,1152,186.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    animation: wave 15s linear infinite;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-5%);
    }

    100% {
        transform: translateX(0);
    }
}

.pamphlet-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInDown 1s ease-out;
}

.pamphlet-header .subtitle {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.breadcrumb {
    position: relative;
    margin-top: 10px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.pamphlet-header a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
    transition: opacity 0.3s;
}

.pamphlet-header a:hover {
    opacity: 1;
}

.pamphlet-header a i {
    margin-right: 5px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* NEW ABOUT US CONTENT STYLES */
/* INTRO SECTION */

.intro-section {
    background: #ffffff;
    padding: 60px 20px;
}

.intro-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* TEXT SIDE */

.intro-text {
    flex: 1;
}

.intro-main h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0a2a66;
    margin-bottom: 15px;
}

.intro-main p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.intro-block {
    margin-bottom: 20px;
}

.intro-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.intro-row i {
    font-size: 28px;
    color: #0a2a66;
    margin-top: 5px;
}

.intro-block h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0a2a66;
    margin-bottom: 5px;
}

.intro-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* IMAGE SIDE */

.intro-image-wrapper {
    position: relative;
    flex: 0 0 500px;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Entry Animation */
    animation: fadeSlideIn 1.2s ease forwards;
    opacity: 0;
    transform: translateY(40px);
}

/* Fade + Slide */
@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Background Shapes */

.image-bg-shape {
    position: absolute;
    background: #dbe8ff;
    z-index: 0;
    animation: floatShape 6s ease-in-out infinite;
}

.shape-top {
    width: 220px;
    height: 150px;
    top: -30px;
    left: -40px;
    border-radius: 80px;
}

.shape-bottom {
    width: 180px;
    height: 140px;
    bottom: -30px;
    right: -30px;
    border-radius: 40px;
    animation-delay: 2s;
}

/* Floating Animation */
@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Image Card */

.intro-image-card {
    position: relative;
    background: #ffffff;
    padding: 15px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 1;
    transition: all 0.4s ease;
}

/* Hover Lift */
.intro-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Image */

.intro-image-card img {
    width: 480px;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: transform 0.5s ease;
}

/* Image Zoom on Hover */
.intro-image-card:hover img {
    transform: scale(1.05);
}


/* Mission & Vision Section - UPDATED */
.mission-vision-container {
    padding: 20px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.vision-card, .mission-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    position: relative;
    border-top: 5px solid var(--accent-red);
}

.mission-card {
    border-top-color: var(--primary-blue);
}

/* Changed ONLY the icons - KEEPING STRUCTURE */
.vision-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

/* Changed ONLY the icons - KEEPING STRUCTURE */
.mission-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2196F3, #03A9F4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 32px;
    color: white;
}

.vision-card h3, .mission-card h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.vision-list, .mission-list {
    list-style: none;
}

.vision-list li, .mission-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-text);
}

.vision-list li::before, .mission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
    font-size: 18px;
}

.mission-list li::before {
    color: var(--primary-blue);
}

/* Global Presence Section */
.global-section {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px 20px;
}

.global-regions {
    width: 100%;
}

.region-group {
    margin-bottom: 40px;
}

.region-group h3 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.region-group h3 i {
    color: var(--accent-red);
}

/* BULLET POINT STYLING (NEW) */
.global-bullets {
    padding-left: 20px;
    margin-bottom: 30px;
}

.global-bullets li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.global-bullets li::marker {
    color: var(--accent-red);
    font-size: 18px;
}

/* Regions Grid */
.regions-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.region-card {
    background: var(--light-blue);
    border-radius: var(--border-radius);
    padding: 25px;
    border-left: 4px solid var(--primary-blue);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.region-card h4 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.region-card h4 i {
    color: var(--accent-red);
}

.region-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-text);
    flex: 1;
}

/* Final Statement */
.final-statement {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 50px;
    color: white;
    text-align: center;
}

.statement-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.statement-content p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.certification-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.badge i {
    color: #ffd700;
    font-size: 18px;
}

.badge span {
    font-weight: 600;
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .intro-content {
        flex-direction: column;
    }
    
    /* Mission & Vision - 2 cards side by side on tablet */
    .mission-vision-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1100px) {
    /* Global Reach - 2 cards per row on medium screens */
    .regions-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-container {
        padding: 30px 15px;
    }

    .vision-card, .mission-card {
        padding: 30px;
    }

    .pamphlet-header {
        padding: 100px 15px 60px;
    }

    .pamphlet-header h1 {
        font-size: 42px;
    }

    .intro-section,
    .global-section,
    .final-statement {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    /* Mission & Vision - Stack on mobile */
    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pamphlet-header h1 {
        font-size: 36px;
    }

    .pamphlet-header .subtitle {
        font-size: 18px;
    }

    .intro-content {
        gap: 40px;
    }

    .vision-card,
    .mission-card {
        padding: 25px;
    }

    .region-card {
        padding: 20px;
    }

    .statement-content h3 {
        font-size: 28px;
    }
    
    /* Global Reach - 2 cards per row on tablet */
    .regions-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    /* Global Reach - 1 card per row on mobile */
    .regions-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-container {
        padding: 20px 10px;
    }

    .pamphlet-header {
        padding: 80px 10px 50px;
    }

    .pamphlet-header h1 {
        font-size: 32px;
    }

    .intro-section,
    .global-section,
    .final-statement {
        padding: 40px 20px;
    }

    .vision-card,
    .mission-card {
        padding: 20px;
    }

    .certification-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .floating-card {
        padding: 30px 20px;
    }

    .statement-content h3 {
        font-size: 24px;
    }

    .statement-content p {
        font-size: 16px;
    }
}